Autogenerated HTML docs for v1.5.0-rc1-gb60d
diff --git a/config.txt b/config.txt index b4aae0d..f7dba89 100644 --- a/config.txt +++ b/config.txt
@@ -100,7 +100,7 @@ group-writable). When 'all' (or 'world' or 'everybody'), the repository will be readable by all users, additionally to being group-shareable. When 'umask' (or 'false'), git will use permissions - reported by umask(2). See gitlink:git-init-db[1]. False by default. + reported by umask(2). See gitlink:git-init[1]. False by default. core.warnAmbiguousRefs:: If true, git will warn you if the ref name you passed it is ambiguous
diff --git a/core-tutorial.html b/core-tutorial.html index 8927cbb..dd84bf0 100644 --- a/core-tutorial.html +++ b/core-tutorial.html
@@ -309,12 +309,12 @@ <p>For our first example, we're going to start a totally new repository from scratch, with no pre-existing files, and we'll call it <tt>git-tutorial</tt>. To start up, create a subdirectory for it, change into that -subdirectory, and initialize the git infrastructure with <tt>git-init-db</tt>:</p> +subdirectory, and initialize the git infrastructure with <tt>git-init</tt>:</p> <div class="listingblock"> <div class="content"> <pre><tt>$ mkdir git-tutorial $ cd git-tutorial -$ git-init-db</tt></pre> +$ git-init</tt></pre> </div></div> <p>to which git will reply</p> <div class="listingblock"> @@ -1613,11 +1613,11 @@ <pre><tt>$ mkdir my-git.git</tt></pre> </div></div> <p>Then, make that directory into a git repository by running -<tt>git init-db</tt>, but this time, since its name is not the usual +<tt>git init</tt>, but this time, since its name is not the usual <tt>.git</tt>, we do things slightly differently:</p> <div class="listingblock"> <div class="content"> -<pre><tt>$ GIT_DIR=my-git.git git-init-db</tt></pre> +<pre><tt>$ GIT_DIR=my-git.git git-init</tt></pre> </div></div> <p>Make sure this directory is available for others you want your changes to be pulled by via the transport of your choice. Also @@ -1761,7 +1761,7 @@ </p> <p>If other people are pulling from your repository over dumb transport protocols (HTTP), you need to keep this repository -<em>dumb transport friendly</em>. After <tt>git init-db</tt>, +<em>dumb transport friendly</em>. After <tt>git init</tt>, <tt>$GIT_DIR/hooks/post-update</tt> copied from the standard templates would contain a call to <tt>git-update-server-info</tt> but the <tt>post-update</tt> hook itself is disabled by default — enable it @@ -2004,7 +2004,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 16-Dec-2006 07:43:55 UTC +Last updated 13-Jan-2007 08:09:05 UTC </div> </div> </body>
diff --git a/core-tutorial.txt b/core-tutorial.txt index 5ea6117..0cd33fb 100644 --- a/core-tutorial.txt +++ b/core-tutorial.txt
@@ -46,12 +46,12 @@ For our first example, we're going to start a totally new repository from scratch, with no pre-existing files, and we'll call it `git-tutorial`. To start up, create a subdirectory for it, change into that -subdirectory, and initialize the git infrastructure with `git-init-db`: +subdirectory, and initialize the git infrastructure with `git-init`: ------------------------------------------------ $ mkdir git-tutorial $ cd git-tutorial -$ git-init-db +$ git-init ------------------------------------------------ to which git will reply @@ -1371,11 +1371,11 @@ ------------ Then, make that directory into a git repository by running -`git init-db`, but this time, since its name is not the usual +`git init`, but this time, since its name is not the usual `.git`, we do things slightly differently: ------------ -$ GIT_DIR=my-git.git git-init-db +$ GIT_DIR=my-git.git git-init ------------ Make sure this directory is available for others you want your @@ -1511,7 +1511,7 @@ + If other people are pulling from your repository over dumb transport protocols (HTTP), you need to keep this repository -'dumb transport friendly'. After `git init-db`, +'dumb transport friendly'. After `git init`, `$GIT_DIR/hooks/post-update` copied from the standard templates would contain a call to `git-update-server-info` but the `post-update` hook itself is disabled by default -- enable it
diff --git a/cvs-migration.html b/cvs-migration.html index e882687..2492649 100644 --- a/cvs-migration.html +++ b/cvs-migration.html
@@ -338,7 +338,7 @@ <div class="content"> <pre><tt>$ mkdir /pub/my-repo.git $ cd /pub/my-repo.git -$ git --bare init-db --shared +$ git --bare init --shared $ git --bare fetch /home/alice/myproject master:master</tt></pre> </div></div> <p>Next, give every team member read/write access to this repository. One @@ -416,7 +416,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 01-Jan-2007 03:20:16 UTC +Last updated 13-Jan-2007 08:09:07 UTC </div> </div> </body>
diff --git a/cvs-migration.txt b/cvs-migration.txt index 8e09bea..775bf42 100644 --- a/cvs-migration.txt +++ b/cvs-migration.txt
@@ -80,7 +80,7 @@ ------------------------------------------------ $ mkdir /pub/my-repo.git $ cd /pub/my-repo.git -$ git --bare init-db --shared +$ git --bare init --shared $ git --bare fetch /home/alice/myproject master:master ------------------------------------------------
diff --git a/git-commit.html b/git-commit.html index 849254d..7575c77 100644 --- a/git-commit.html +++ b/git-commit.html
@@ -383,12 +383,8 @@ </dt> <dd> <p> - By default, the command looks for suspicious lines the - commit introduces, and aborts committing if there is one. - The definition of <em>suspicious lines</em> is currently the - lines that has trailing whitespaces, and the lines whose - indentation has a SP character immediately followed by a - TAB character. This option turns off the check. + This option bypasses the pre-commit hook. + See also <a href="hooks.html">hooks</a>. </p> </dd> <dt> @@ -654,7 +650,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 31-Dec-2006 01:19:02 UTC +Last updated 13-Jan-2007 08:09:00 UTC </div> </div> </body>
diff --git a/git-commit.txt b/git-commit.txt index a7adf24..cb081cd 100644 --- a/git-commit.txt +++ b/git-commit.txt
@@ -72,12 +72,8 @@ Add Signed-off-by line at the end of the commit message. --no-verify:: - By default, the command looks for suspicious lines the - commit introduces, and aborts committing if there is one. - The definition of 'suspicious lines' is currently the - lines that has trailing whitespaces, and the lines whose - indentation has a SP character immediately followed by a - TAB character. This option turns off the check. + This option bypasses the pre-commit hook. + See also link:hooks.html[hooks]. -e|--edit:: The message taken from file with `-F`, command line with
diff --git a/git-init.html b/git-init.html index b400c4a..badaeb5 100644 --- a/git-init.html +++ b/git-init.html
@@ -351,9 +351,7 @@ time it has become responsible for setting up the other aspects of the repository, such as installing the default hooks and setting the configuration variables. The old name is retained -because people are so used to it and many existing documents -refer to it that way, and this will not change for some time to -come.</p> +for backward compatibility reasons.</p> </div> <h2>EXAMPLES</h2> <div class="sectionbody"> @@ -397,7 +395,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 12-Jan-2007 02:43:35 UTC +Last updated 13-Jan-2007 08:09:00 UTC </div> </div> </body>
diff --git a/git-init.txt b/git-init.txt index e1fd688..596b567 100644 --- a/git-init.txt +++ b/git-init.txt
@@ -79,9 +79,7 @@ time it has become responsible for setting up the other aspects of the repository, such as installing the default hooks and setting the configuration variables. The old name is retained -because people are so used to it and many existing documents -refer to it that way, and this will not change for some time to -come. +for backward compatibility reasons. EXAMPLES
diff --git a/git-p4import.html b/git-p4import.html index 99ab519..1b218a8 100644 --- a/git-p4import.html +++ b/git-p4import.html
@@ -396,7 +396,7 @@ <div class="content"> <pre><tt>$ mkdir -p /home/sean/import/jam $ cd /home/sean/import/jam -$ git init-db +$ git init $ git p4import //public/jam jammy</tt></pre> </div></div> </div> @@ -461,7 +461,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 03-Oct-2006 08:41:15 UTC +Last updated 13-Jan-2007 08:09:01 UTC </div> </div> </body>
diff --git a/git-p4import.txt b/git-p4import.txt index ee9e8fa..6edb9f1 100644 --- a/git-p4import.txt +++ b/git-p4import.txt
@@ -93,7 +93,7 @@ ------------ $ mkdir -p /home/sean/import/jam $ cd /home/sean/import/jam -$ git init-db +$ git init $ git p4import //public/jam jammy ------------
diff --git a/git-prune-packed.html b/git-prune-packed.html index 82685e5..dc3ebd0 100644 --- a/git-prune-packed.html +++ b/git-prune-packed.html
@@ -272,7 +272,7 @@ </div> <h2>SYNOPSIS</h2> <div class="sectionbody"> -<p><em>git-prune-packed</em> [-n]</p> +<p><em>git-prune-packed</em> [-n] [-q]</p> </div> <h2>DESCRIPTION</h2> <div class="sectionbody"> @@ -296,6 +296,14 @@ removed. </p> </dd> +<dt> +-q +</dt> +<dd> +<p> + Squelch the progress indicator. +</p> +</dd> </dl> </div> <h2>Author</h2> @@ -317,7 +325,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 03-Oct-2006 08:41:17 UTC +Last updated 13-Jan-2007 08:09:01 UTC </div> </div> </body>
diff --git a/git-prune-packed.txt b/git-prune-packed.txt index 2348826..a79193f 100644 --- a/git-prune-packed.txt +++ b/git-prune-packed.txt
@@ -9,7 +9,7 @@ SYNOPSIS -------- -'git-prune-packed' [-n] +'git-prune-packed' [-n] [-q] DESCRIPTION @@ -32,6 +32,9 @@ Don't actually remove any objects, only show those that would have been removed. +-q:: + Squelch the progress indicator. + Author ------ Written by Linus Torvalds <torvalds@osdl.org>
diff --git a/git-repo-config.html b/git-repo-config.html index 78ca730..97ff00c 100644 --- a/git-repo-config.html +++ b/git-repo-config.html
@@ -690,7 +690,7 @@ group-writable). When <em>all</em> (or <em>world</em> or <em>everybody</em>), the repository will be readable by all users, additionally to being group-shareable. When <em>umask</em> (or <em>false</em>), git will use permissions - reported by umask(2). See <a href="git-init-db.html">git-init-db(1)</a>. False by default. + reported by umask(2). See <a href="git-init.html">git-init(1)</a>. False by default. </p> </dd> <dt> @@ -1268,7 +1268,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 08-Jan-2007 06:53:19 UTC +Last updated 13-Jan-2007 08:09:02 UTC </div> </div> </body>
diff --git a/git-svn.html b/git-svn.html index 49e63b6..954cf47 100644 --- a/git-svn.html +++ b/git-svn.html
@@ -514,7 +514,7 @@ <dd> <p> Only used with the <em>init</em> command. - These are passed directly to <a href="git-init-db.html">git-init-db(1)</a>. + These are passed directly to <a href="git-init.html">git-init(1)</a>. </p> </dd> <dt> @@ -786,7 +786,7 @@ <p>Tracking and contributing to a the trunk of a Subversion-managed project:</p> <div class="listingblock"> <div class="content"> -<pre><tt># Initialize a repo (like git init-db): +<pre><tt># Initialize a repo (like git init): git-svn init http://svn.foo.org/project/trunk # Fetch remote revisions: git-svn fetch @@ -806,7 +806,7 @@ <em><a href="#tracking-multiple-repos">Tracking Multiple Repositories or Branches</a></em></p> <div class="listingblock"> <div class="content"> -<pre><tt># Initialize a repo (like git init-db): +<pre><tt># Initialize a repo (like git init): git-svn multi-init http://svn.foo.org/project \ -T trunk -b branches -t tags # Fetch remote revisions: @@ -911,7 +911,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 10-Jan-2007 05:05:02 UTC +Last updated 13-Jan-2007 08:09:03 UTC </div> </div> </body>
diff --git a/git-svn.txt b/git-svn.txt index 1b01313..9ed7211 100644 --- a/git-svn.txt +++ b/git-svn.txt
@@ -171,7 +171,7 @@ --shared:: --template=<template_directory>:: Only used with the 'init' command. - These are passed directly to gitlink:git-init-db[1]. + These are passed directly to gitlink:git-init[1]. -r <ARG>:: --revision <ARG>:: @@ -367,7 +367,7 @@ Tracking and contributing to a the trunk of a Subversion-managed project: ------------------------------------------------------------------------ -# Initialize a repo (like git init-db): +# Initialize a repo (like git init): git-svn init http://svn.foo.org/project/trunk # Fetch remote revisions: git-svn fetch @@ -388,7 +388,7 @@ '<<tracking-multiple-repos,Tracking Multiple Repositories or Branches>>' ------------------------------------------------------------------------ -# Initialize a repo (like git init-db): +# Initialize a repo (like git init): git-svn multi-init http://svn.foo.org/project \ -T trunk -b branches -t tags # Fetch remote revisions:
diff --git a/git.html b/git.html index bbc3ec0..da533ba 100644 --- a/git.html +++ b/git.html
@@ -1046,12 +1046,9 @@ <dt> <a href="git-init.html">git-init(1)</a> </dt> -<dt> -<a href="git-init-db.html">git-init-db(1)</a> -</dt> <dd> <p> - Creates an empty git object database, or reinitialize an + Creates an empty git repository, or reinitialize an existing one. </p> </dd> @@ -2288,7 +2285,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 08-Jan-2007 06:53:21 UTC +Last updated 13-Jan-2007 08:09:04 UTC </div> </div> </body>
diff --git a/git.txt b/git.txt index 5662cdc..f89d745 100644 --- a/git.txt +++ b/git.txt
@@ -354,8 +354,7 @@ Build pack idx file for an existing packed archive. gitlink:git-init[1]:: -gitlink:git-init-db[1]:: - Creates an empty git object database, or reinitialize an + Creates an empty git repository, or reinitialize an existing one. gitlink:git-merge-file[1]::
diff --git a/glossary.html b/glossary.html index e3f8f21..06658c0 100644 --- a/glossary.html +++ b/glossary.html
@@ -804,8 +804,8 @@ <a href="#ref_branch">branch</a> <a href="#ref_head">head</a>". And <tt>git <a href="#ref_push">push</a> $URL refs/heads/<a href="#ref_master">master</a>:refs/heads/to-upstream</tt> means "publish my <a href="#ref_master">master</a> <a href="#ref_branch">branch</a> - <a href="#ref_head">head</a> as to-upstream <a href="#ref_master">master</a> <a href="#ref_head">head</a> - at $URL". See also <a href="git-push.html">git-push(1)</a> + <a href="#ref_head">head</a> as to-upstream <a href="#ref_branch">branch</a> at $URL". See + also <a href="git-push.html">git-push(1)</a> </p> </dd> <dt> @@ -984,7 +984,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 08-Jan-2007 06:53:26 UTC +Last updated 13-Jan-2007 08:09:09 UTC </div> </div> </body>
diff --git a/glossary.txt b/glossary.txt index cd61aa2..bc917bb 100644 --- a/glossary.txt +++ b/glossary.txt
@@ -259,7 +259,7 @@ means "grab the master branch head from the $URL and store it as my origin branch head". And `git push $URL refs/heads/master:refs/heads/to-upstream` - means "publish my master branch head as to-upstream master head + means "publish my master branch head as to-upstream branch at $URL". See also gitlink:git-push[1] repository::
diff --git a/hooks.html b/hooks.html index d4faf7f..e1cc5d6 100644 --- a/hooks.html +++ b/hooks.html
@@ -265,7 +265,7 @@ <div class="sectionbody"> <p>Hooks are little scripts you can place in <tt>$GIT_DIR/hooks</tt> directory to trigger action at certain points. When -<tt>git-init-db</tt> is run, a handful example hooks are copied in the +<tt>git-init</tt> is run, a handful example hooks are copied in the <tt>hooks</tt> directory of the new repository, but by default they are all disabled. To enable a hook, make it executable with <tt>chmod +x</tt>.</p> <p>This document describes the currently defined hooks.</p> @@ -406,7 +406,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 01-Jan-2007 03:20:17 UTC +Last updated 13-Jan-2007 08:09:09 UTC </div> </div> </body>
diff --git a/hooks.txt b/hooks.txt index 161123f..e3b76f9 100644 --- a/hooks.txt +++ b/hooks.txt
@@ -3,7 +3,7 @@ Hooks are little scripts you can place in `$GIT_DIR/hooks` directory to trigger action at certain points. When -`git-init-db` is run, a handful example hooks are copied in the +`git-init` is run, a handful example hooks are copied in the `hooks` directory of the new repository, but by default they are all disabled. To enable a hook, make it executable with `chmod +x`.
diff --git a/howto-index.html b/howto-index.html index 5b4f072..31eb725 100644 --- a/howto-index.html +++ b/howto-index.html
@@ -365,7 +365,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 03-Oct-2006 08:41:46 UTC +Last updated 13-Jan-2007 08:09:08 UTC </div> </div> </body>
diff --git a/howto/setup-git-server-over-http.txt b/howto/setup-git-server-over-http.txt index ba19156..a202f3a 100644 --- a/howto/setup-git-server-over-http.txt +++ b/howto/setup-git-server-over-http.txt
@@ -70,7 +70,7 @@ Initialize a bare repository $ cd my-new-repo.git - $ git --bare init-db + $ git --bare init Change the ownership to your web-server's credentials. Use "grep ^User
diff --git a/repository-layout.html b/repository-layout.html index 6dda03f..106c4dc 100644 --- a/repository-layout.html +++ b/repository-layout.html
@@ -437,7 +437,7 @@ <p> Hooks are customization scripts used by various git commands. A handful of sample hooks are installed when - <tt>git init-db</tt> is run, but all of them are disabled by + <tt>git init</tt> is run, but all of them are disabled by default. To enable, they need to be made executable. Read <a href="hooks.html">hooks</a> for more details about each hook. @@ -543,7 +543,7 @@ </div> <div id="footer"> <div id="footer-text"> -Last updated 20-Nov-2006 03:17:36 UTC +Last updated 13-Jan-2007 08:09:08 UTC </div> </div> </body>
diff --git a/repository-layout.txt b/repository-layout.txt index e20fb7e..0fdd366 100644 --- a/repository-layout.txt +++ b/repository-layout.txt
@@ -102,7 +102,7 @@ hooks:: Hooks are customization scripts used by various git commands. A handful of sample hooks are installed when - `git init-db` is run, but all of them are disabled by + `git init` is run, but all of them are disabled by default. To enable, they need to be made executable. Read link:hooks.html[hooks] for more details about each hook.